home *** CD-ROM | disk | FTP | other *** search
/ The Games Machine 76 / XENIATGM66.iso / Indiana Jones / Indiana Jones.exe / RESOURCE / PREVIEW.GOB / cog_class_torch.cog < prev    next >
Text File  |  1999-11-15  |  695b  |  36 lines

  1. # Jones 3D Cog Script
  2. #
  3. # class_Torch.cog
  4. #
  5. # Continuous global animation of gen_torchflame4_01.mat material
  6. #
  7. # [SXC]
  8. #
  9. # RT - Changed to animate on sight
  10. # RKD - Changed to animate on startup
  11. #
  12. # (C) 1998 LucasArts Entertainment Company LLC. All Rights Reserved
  13. # ========================================================================================
  14.  
  15. symbols
  16.     
  17. message        startup
  18.  
  19. material    flame=gen_torchflame4_01.mat    local    desc=animating_material
  20.  
  21. flex        fps=8.0                            local    desc=playback_speed
  22.  
  23. end
  24.  
  25. # ........................................................................................
  26.  
  27. code
  28.  
  29. startup:
  30.  
  31.     MaterialAnim(flame, fps, 0x1);
  32.     return;
  33.  
  34. end
  35.  
  36.